blob: a16df593ce301f63241a04db252b59b4633c19cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<script setup lang="ts">
import { useSessionStore } from '@/stores/session';
import { stripColorCodes } from '@/lib/util';
definePageMeta({
layout: 'editor'
})
const sessionStore = useSessionStore();
const route = useRoute();
const categoryId = route.params.id as string;
const categoryName = sessionStore.getCategoryById(categoryId)?.display.name;
</script>
<template>
<div id="header">
<span id="path">
<font-awesome-icon class="icon" :icon="['fas', 'fa-folder']" />
<span class="title" v-if="categoryName">{{ stripColorCodes(categoryName) }} </span>
<code>({{ categoryId }})</code>
</span>
<span id="controls" class="control-group">
<Button type="solid" :disabled="true" :icon="['fas', 'fa-save']" :label="'Save'"></Button>
</span>
</div>
<div id="options-container">
<EditorCategoryOptionsPanel :categoryId="categoryId" />
<EditorCategoryChildrenOptionsPanel :categoryId="categoryId" />
</div>
</template>
<style scoped>
#header {
padding: 1rem 1rem 0.5rem 1rem;
background-color: var(--color-background);
border-bottom: 1px solid var(--color-border);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 100%;
height: 55px;
display: flex;
align-items: left;
justify-content: space-between;
gap: 1rem;
#path {
font-size: 1.2rem;
display: flex;
gap: 0.5rem;
align-items: center;
.icon {
font-size: 0.8rem;
}
.chevron {
font-size: 0.8rem;
color: var(--color-text-mute);
}
.title {
font-weight: 700;
}
code {
font-size: 0.8rem;
color: var(--color-text-mute);
}
}
}
.none-selected {
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
font-size: 1.2rem;
color: var(--color-text-mute);
}
#pane-container {
width: 100%;
flex-grow: 1;
height: calc(100vh - 73px);
max-height: calc(100vh - 73px);
}
#options-container {
width: 100%;
display: flex;
gap: 1rem;
padding: 1rem;
overflow: auto;
max-height: calc(100% - 55px);
}
header {
border-bottom: 1px solid var(--color-border);
}
</style>
|